aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/[id]/info.module.css
blob: 56be3ad2cf0beaeb23b68d1c62a455511576cd7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
.dramaInfoContainer {
	display: flex;
	flex-direction: column;
}

.dramaInfo {
	display: flex;
	flex-direction: column;
	width: 98%;
	margin: 80px auto;
}

.titleContainer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.titleContainer p {
	color: var(--neon-green);
	width: 60%;
	font-family: "Lexend Deca", serif;
	font-weight: 500;
	font-size: 34px;
}

.titleContainer img {
	aspect-ratio: 16 / 9;
	border-radius: 10px;
}

.animeDescription h2 {
	color: #ffffff81;
	margin: 20px 0px -10px 0px;
	font-family: "Lexend Deca", serif;
}

.animeDescription p {
	font-family: "Atkinson Hyperlegible", serif;
	color: rgba(255, 255, 255, 0.637);
}

.buttonContainer {
	margin: 0px;
	height: 200px;
	overflow-y: auto;
	border-radius: 10px;
}

.buttonHeader {
	margin: 0px 10px 10px 0px;
	color: #ffffff81;
	font-family: "Lexend Deca", serif;
}

.buttonContainer button {
	transition: transform 200ms ease-in-out;

}

.buttonContainer button:focus {
	opacity: 0.7;
	transition: transform 200ms ease-in;
	background-color: var(--soft-purple);
	transform: scale(0.9);
}

.buttonContainer::-webkit-scrollbar{
	width: 5px;
}

.buttonContainer::-webkit-scrollbar-thumb{
	background-color: var(--soft-purple);
	border-radius: 1rem;
}

.dramaButton {
	padding: 10px;
	font-family: "Atkinson Hyperlegible", serif;
	font-size: 14px;
	margin: 5px 5px 5px 5px;
	width: 55px;
	border-radius: 5px;
	text-align: center;
	border: none;
	outline: none;
	color: white;
	background-color: #3d3d3d;
	transition: background-color 200ms ease-in-out;
	cursor: pointer;
}

.dramaButton:hover {
	background-color: #1f1f1f;
	transition: background-color 200ms ease-in
}

.infoPageContainer p {
	color: white;
}

.animeDetails {
	color: white;
	font-family: "Lexend Deca", serif;
}

.genreEntries {
	margin: 3px;
	padding: 4px;
	border-radius: 5px;
	color: var(--neon-green);
	background-color: #303030;
	font-family: "Atkinson Hyperlegible", serif;
}

.animeType span {
	color: var(--light-green);
}

.animeRelease span {
	color: var(--soft-purple)
}

.videoPopUp {
	height: 100dvh;
	width: 100dvw;
	background-color: #1f1f1fd3;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1;
	overflow-y: auto;
}


.closeButton {
	font-family: "Poppins", serif;
	font-size: 16px;
	background-color: var(--pastel-red);
	padding: 0.5rem 1.5rem;
	border: 0;
	outline: 0;
	border-radius: 0.5rem;
	cursor: pointer;
	margin: 5px;
}

.video {
	width: 60vw;
	font-family: "Lexend Deca", serif;
}

.VideoPlayer {
	width: 100%;
}

@media screen and (max-width: 768px) {

	.titleContainer p {
		font-size: 28px;
	}

	.animeDetails {
		font-size: 14px;
	}

	.video {
		width: 100%;
	}
}